home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-20 / log_eqf.zip / COPY-EQF.BAT < prev    next >
DOS Batch File  |  1991-02-06  |  743b  |  30 lines

  1. echo .  This batch file copies LOG-EQF files to floppy A: or B:
  2. echo off
  3. if "%1"=="" goto error
  4. cls
  5. goto noerror
  6. :error
  7. echo .  ERROR: You MUST enter this batch file by typing the target
  8. echo .         disk drive after this file name, i.e.... COPY-EQF B:
  9. echo .         will copy from the current directory to drive B.
  10. goto exit
  11. :noerror
  12. echo .   Now checking floppy %1 before attempting copy...
  13. chkdsk %1/f
  14. pause
  15. cls
  16. echo .   Beginning copy of LOG-EQF files to floppy %1...
  17. copy log-eqf.exe %1
  18. copy log-eqf.mem %1
  19. copy dupe-eqf.exe %1
  20. copy log-eqf.doc %1
  21. copy dxprefix.lib %1
  22. copy sample.log %1
  23. copy copy-eqf.bat %1
  24. copy readme.doc %1
  25. copy log-eqf.def %1
  26. cls
  27. echo .   Directory of floppy %1 files...
  28. dir %1
  29. :exit
  30.